When working on the project, does not matter how big or small, having written unit tests, integration tests, it is like having safety net under you before walking the thin line of changing functionality. Code coverage reporting after running tests helps track how much of the production code is covered by tests.
Continue reading...
AutoMapper is a library that helps to write clean code by removing need to explicitly map one object to another by hand. In this post I am going to discuss how to add AutoMapper to WebApi .Net Core project and use Heroic.AutoMapper to write cleaner mapping interfaces between objects.
Continue reading...